home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / ace_basic / ace24.lha / include / ace / limits.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-11  |  410 b   |  17 lines

  1. #ifndef LIMITS_H
  2. #define LIMITS_H 1
  3.  
  4. /*  maxima & minima    */
  5. #define MaxInt          2147483647
  6. #define MinInt         -2147483648
  7. #define MaxShort        32767
  8. #define MinShort       -32767        /* NOT -32768, due to the way ACE
  9.                     ** classifies integers during 
  10.                     ** compilation. 
  11.                     */
  12. #define MaxReal         9.22337177E+18
  13. #define MinReal        -9.22337177E+18
  14. #define MAXSTRINGLEN    1024&
  15.  
  16. #endif
  17.